Live Upgrade Integrations Publish Close ESC 21 files changed app/_layout.tsx 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; import { Stack } from "expo-router"; import * as SplashScreen from "expo-splash-screen"; import React, { useEffect } from "react"; import { GestureHandlerRootView } from "react-native-gesture-handler"; import { trpc, trpcClient } from "@/lib/trpc"; import { AuthProvider } from "@/contexts/AuthContext"; // Prevent the splash screen from auto-hiding before asset loading is complete. SplashScreen.preventAutoHideAsync(); const queryClient = new QueryClient(); function RootLayoutNav() { return ( ); } export default function RootLayout() { useEffect(() => { SplashScreen.hideAsync(); }, []); return ( ); } } app/(tabs)/index.tsx 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 import React from 'react'; GraduationCap, TrendingUp, Users, DollarSign, Star Award, Globe, ChevronRight, Star, Shield, Zap } from 'lucide-react-native'; import { useRouter } from 'expo-router'; import PremiumHeader from '@/components/PremiumHeader'; import PremiumCard from '@/components/PremiumCard'; import PremiumButton from '@/components/PremiumButton'; import FeatureCard from '@/components/FeatureCard'; import StatsCard from '@/components/StatsCard'; import Colors from '@/constants/colors'; import BusinessCard from '@/components/BusinessCard'; import Colors from '@/constants/colors'; import { businesses } from '@/constants/businesses'; const { width } = Dimensions.get('window'); export default function HomeScreen() { const features = [ { icon: Shield, title: 'Enterprise Security', description: 'Military-grade encryption and advanced security protocols', color: Colors.premium.emerald, }, const router = useRouter(); const stats = [ { value: '4', label: 'Business Units', trend: '+1 New', trendPositive: true }, { value: '10K+', label: 'Active Clients', trend: '+25%', trendPositive: true }, { value: '$50M', label: 'Annual Revenue', trend: '+35%', trendPositive: true }, { value: '500+', label: 'Employees', trend: '+50', trendPositive: true }, ]; const businessUnits = [ { icon: Zap, title: 'Lightning Performance', description: 'Optimized for speed with cutting-edge technology', color: Colors.premium.royalBlue, id: 'magazine', icon: BookOpen, name: 'Executive Magazine', description: 'Premium business publication', color: businesses.magazine.color, route: '/magazine', }, { icon: Globe, title: 'Global Reach', description: 'Worldwide presence with local expertise', color: Colors.premium.ruby, id: 'radio', icon: Radio, name: 'Radio Network', description: 'Professional broadcasting', color: businesses.radio.color, route: '/radio', }, { icon: Award, title: 'Premium Quality', description: 'Award-winning solutions trusted by industry leaders', color: Colors.premium.champagneGold, id: 'academy', icon: GraduationCap, name: 'Beauty Academy', description: 'Professional education', color: businesses.academy.color, route: '/academy', }, ]; const stats = [ { value: '99.9%', label: 'Uptime', trend: '+0.1%', trendPositive: true }, { value: '10M+', label: 'Users', trend: '+15%', trendPositive: true }, { value: '$2.5B', label: 'Revenue', trend: '+23%', trendPositive: true }, { value: '150+', label: 'Countries', trend: '+5', trendPositive: true }, const achievements = [ { icon: Award, title: 'Industry Leader', description: 'Recognized as top multi-business conglomerate', }, { icon: Globe, title: 'Global Presence', description: 'Operations across 25+ countries', }, { icon: Shield, title: 'SBA Certified', description: 'Full compliance with federal regulations', }, ]; return ( {/* Hero Section */} Welcome to Excellence Experience the pinnacle of enterprise solutions with our premium platform. Crafted for leaders who demand nothing but the best. Leading multi-industry conglomerate delivering premium solutions across media, education, and professional services. Experience the pinnacle of business innovation and executive leadership. app/(tabs)/_layout.tsx 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 import { Tabs } from "expo-router"; import { Crown, Building, Settings, User } from "lucide-react-native"; import { Building2, BookOpen, Radio, GraduationCap, User, Settings, ShoppingBag, FileText } from "lucide-react-native"; import React from "react"; import Colors from "@/constants/colors"; export default function TabLayout() { return ( 14 unchanged lines shadowOpacity: 0.1, shadowRadius: 8, elevation: 8, }, tabBarLabelStyle: { fontSize: 12, fontSize: 10, fontWeight: '600', letterSpacing: 0.5, }, }} > , title: "Headquarters", tabBarIcon: ({ color, size }) => , }} /> , }} /> , }} /> , title: "Academy", tabBarIcon: ({ color, size }) => , }} /> , }} /> , }} /> , }} /> ); } backend/trpc/app-router.ts 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 import { createTRPCRouter } from "./create-context"; import hiRoute from "./routes/example/hi/route"; import registerRoute from "./routes/auth/register/route"; import loginRoute from "./routes/auth/login/route"; import businessesRoute from "./routes/businesses/list/route"; import productsRoute from "./routes/store/products/route"; export const appRouter = createTRPCRouter({ example: createTRPCRouter({ hi: hiRoute, }), auth: createTRPCRouter({ register: registerRoute, login: loginRoute, }), businesses: createTRPCRouter({ list: businessesRoute, }), store: createTRPCRouter({ products: productsRoute, }), }); export type AppRouter = typeof appRouter; constants/businesses.ts 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 export const businesses = { umbrella: { name: "Isaac Kelly's Iceberg Enterprises", tagline: "Premium Business Solutions Umbrella Corporation", description: "Leading multi-industry conglomerate delivering excellence across media, education, and professional services", color: "#003366", }, magazine: { name: "Iceberg Executive Magazine", tagline: "Executive Intelligence & Industry Insights", description: "Premier business publication for industry leaders and decision makers", color: "#1E3A8A", }, radio: { name: "Iceberg Radio Network", tagline: "Premium Audio Content & Broadcasting", description: "Professional radio broadcasting with executive programming and industry news", color: "#50C878", }, academy: { name: "Iceberg Barber & Cosmetology Academy", tagline: "Elite Beauty & Grooming Education", description: "State-licensed professional training in barbering and cosmetology arts", color: "#E0115F", }, }; export const businessCategories = [ { id: 'umbrella', title: 'Corporate Headquarters', businesses: ['umbrella'], }, { id: 'media', title: 'Media & Broadcasting', businesses: ['magazine', 'radio'], }, { id: 'education', title: 'Professional Education', businesses: ['academy'], }, ]; types/business.ts 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 export interface Business { id: string; name: string; tagline: string; description: string; color: string; services: Service[]; programs?: Program[]; staff?: StaffMember[]; facilities?: Facility[]; } export interface Service { id: string; name: string; description: string; price: string; duration?: string; category: 'digital' | 'physical' | 'hybrid'; } export interface Program { id: string; name: string; description: string; duration: string; cost: string; requirements: string[]; certification: string; } export interface StaffMember { id: string; name: string; position: string; department: string; bio: string; image?: string; } export interface Facility { id: string; name: string; type: string; description: string; capacity: number; amenities: string[]; } export interface User { id: string; email: string; name: string; role: 'customer' | 'student' | 'staff' | 'admin'; businessAccess: string[]; membershipLevel: 'basic' | 'premium' | 'executive'; createdAt: Date; } components/BusinessCard.tsx 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 import React from 'react'; import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; import { LinearGradient } from 'expo-linear-gradient'; import { LucideIcon, ChevronRight } from 'lucide-react-native'; import Colors from '@/constants/colors'; interface BusinessCardProps { icon: LucideIcon; name: string; description: string; color: string; onPress?: () => void; } export default function BusinessCard({ icon: Icon, name, description, color, onPress }: BusinessCardProps) { return ( {name} {description} ); } const styles = StyleSheet.create({ container: { borderRadius: 16, shadowColor: Colors.light.shadow, shadowOffset: { width: 0, height: 4 }, shadowOpacity: 0.15, shadowRadius: 12, elevation: 8, borderWidth: 1, borderColor: Colors.premium.platinum, }, content: { flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between', padding: 20, }, left: { flexDirection: 'row', alignItems: 'center', flex: 1, },
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 export const legalCompliance = { sba: { title: 'Small Business Administration Compliance', description: 'Full compliance with SBA regulations and requirements', certifications: [ 'SBA 8(a) Business Development Program', 'HUBZone Certified', 'Women-Owned Small Business (WOSB)', 'Service-Disabled Veteran-Owned Small Business (SDVOSB)', ], requirements: [ 'Annual compliance reporting', 'Financial audits and reviews', 'Minority business certification maintenance', 'Government contracting eligibility', ], }, education: { title: 'Educational Institution Compliance', description: 'Academy compliance with state and federal education regulations', accreditations: [ 'State Board of Cosmetology Approval', 'NACCAS Institutional Accreditation', 'Federal Financial Aid Eligibility (Title IV)', 'Veterans Education Benefits Approval', ], regulations: [ 'Student privacy protection (FERPA)', 'Equal opportunity compliance', 'Disability accommodation (ADA)', 'Consumer protection regulations', ], }, media: { title: 'Media & Broadcasting Compliance', description: 'Radio and magazine compliance with FCC and publishing regulations', licenses: [ 'FCC Broadcasting License', 'Music Licensing (ASCAP, BMI, SESAC)', 'Content Distribution Rights', 'Digital Media Compliance', ], standards: [ 'Equal time provisions', 'Public interest obligations', 'Content rating and classification', 'Advertising standards compliance', ], }, corporate: { title: 'Corporate Governance & Compliance', description: 'Enterprise-level compliance and governance standards', frameworks: [ 'SOX Compliance (Sarbanes-Oxley)', 'GDPR Data Protection', 'ISO 27001 Information Security', 'Corporate Social Responsibility (CSR)', ], policies: [ 'Anti-corruption and ethics', 'Environmental sustainability', 'Diversity, equity, and inclusion', 'Stakeholder engagement', ], }, }; export const boardOfDirectors = [ { name: 'Isaac Kelly', position: 'Chairman & Chief Executive Officer', bio: 'Visionary leader with 25+ years of experience in multi-industry business development and strategic growth.', expertise: ['Strategic Planning', 'Business Development', 'Corporate Governance'], education: 'MBA Harvard Business School, BS Engineering MIT', }, { name: 'Sarah Mitchell', position: 'Chief Operating Officer & Director', bio: 'Operations expert specializing in digital transformation and organizational excellence.', expertise: ['Operations Management', 'Digital Strategy', 'Process Optimization'], education: 'MBA Wharton, BS Computer Science Stanford', }, { name: 'Dr. Michael Chen', position: 'Chief Financial Officer & Director', bio: 'Financial strategist with expertise in corporate finance, mergers & acquisitions, and risk management.', expertise: ['Corporate Finance', 'Risk Management', 'Investment Strategy'], education: 'PhD Finance University of Chicago, CPA', }, { name: 'Jennifer Rodriguez', position: 'Chief Marketing Officer & Director', bio: 'Marketing innovator with deep experience in brand development and multi-channel marketing strategies.', expertise: ['Brand Strategy', 'Digital Marketing', 'Customer Experience'], education: 'MBA Northwestern Kellogg, BA Marketing NYU', }, constants/business-plans.ts 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 export const businessPlans = { umbrella: { executiveSummary: { mission: 'To provide premium business solutions across multiple industries while maintaining the highest standards of excellence and innovation.', vision: 'To become the leading multi-industry conglomerate known for transformative business solutions and exceptional customer value.', keySuccessFactors: [ 'Diversified business portfolio reducing market risk', 'Synergistic operations across business units', 'Premium brand positioning and customer loyalty', 'Experienced leadership team with proven track record', 'Strong financial performance and growth trajectory', ], financialHighlights: { projectedRevenue2024: '$50M', projectedGrowth: '35%', targetMarkets: ['Corporate Services', 'Media & Broadcasting', 'Professional Education'], employeeCount: 500, }, }, marketAnalysis: { industryOverview: 'Multi-industry conglomerate operating in high-growth sectors with strong demand for premium services.', targetMarkets: [ { segment: 'Enterprise Clients', size: '$2.5B', growth: '15% annually', characteristics: 'Large corporations seeking comprehensive business solutions', }, { segment: 'Professional Services', size: '$1.8B', growth: '12% annually', characteristics: 'Businesses requiring specialized consulting and advisory services', }, { segment: 'Educational Services', size: '$800M', growth: '8% annually', characteristics: 'Individuals seeking professional certification and career advancement', }, ], competitiveAdvantage: [ 'Integrated service offerings across multiple industries', 'Premium brand positioning and reputation', 'Experienced management team', 'Strong financial resources and stability', 'Innovative technology and processes', ], }, operations: { businessModel: 'Diversified conglomerate with autonomous business units sharing resources and expertise', keyActivities: [ 'Strategic planning and corporate governance', 'Business unit management and oversight', 'Resource allocation and optimization', 'Brand management and marketing coordination', 'Financial management and reporting', ], facilities: [ { location: 'New York Headquarters', size: '50,000 sq ft', purpose: 'Executive offices, corporate services, meeting facilities', }, { location: 'Los Angeles Operations Center', size: '30,000 sq ft', purpose: 'Media production, radio broadcasting, content creation', }, { location: 'Miami Academy Campus', size: '25,000 sq ft', purpose: 'Beauty academy, training facilities, student services', }, ], }, financialProjections: { revenue: { year1: '$50M', year2: '$67.5M', year3: '$91M', year4: '$123M', year5: '$166M', }, expenses: { year1: '$35M', year2: '$45M', year3: '$59M', year4: '$78M', year5: '$103M', }, netIncome: { year1: '$15M', year2: '$22.5M', year3: '$32M', year4: '$45M', year5: '$63M', }, }, }, magazine: { executiveSummary: { mission: 'To provide executive-level business intelligence and insights to industry leaders and decision makers.', vision: 'To become the premier source of business intelligence for C-suite executives and industry leaders.', keySuccessFactors: [ 'High-quality, exclusive content from industry experts', keySuccessFactors: [ };